@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Domine:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Stylish&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Domine', serif;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

a {
  text-decoration: none;
}

.main-btn {
  margin: 2rem 0;
  white-space: nowrap;
}

.main-btn a {
  background-color: #B38A5F;
  border-radius: 2rem;
  padding: 10px 20px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 700;
}

.main-btn a:hover {
  background: #333;
}

header {
  text-align: center;
  margin-top: 65px;
}

header h1 {
  text-align: center;
  padding: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 4rem;
  margin: 0;
}

header .banner {
  background-image: url("../../index/img/banner.jpg");
  width: 100%;
  min-height: 70vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.section {
  margin: 70px auto;
}

.title {
  position: relative;
  font-size: 2rem;
  padding-bottom: 1.05rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  font-weight: 700;
  text-transform: uppercase;
}

.title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 50%;
  height: 2.5px;
  background-color: #B38A5F;
}

@media only screen and (max-width: 991px) {
  header {
    margin-top: 52px !important;
  }
  header h1 {
    font-size: 2.25rem !important;
  }
  .title {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
  }
  .main-btn {
    margin: 1.5rem 0;
    white-space: nowrap;
  }
  .main-btn a {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  .section {
    margin: 50px auto !important;
  }
}

.nav-container {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
  height: auto;
}

.nav-container .logo {
  font-weight: 700;
  font-size: 2rem;
}

.nav-container .logo a {
  color: #fff;
}

.nav-container .ham-menu {
  display: none;
  width: 28px;
  height: 28px;
  place-items: center;
}

.nav-container .ham-btn {
  height: 3px;
  width: 28px;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-container .ham-btn::before, .nav-container .ham-btn::after {
  content: '';
  width: inherit;
  height: inherit;
  background-color: #fff;
  position: absolute;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-container .ham-btn::before {
  top: -8px;
}

.nav-container .ham-btn::after {
  top: 8px;
}

.nav-container .ham-btn.active {
  background-color: transparent;
}

.nav-container .ham-btn.active::before {
  -webkit-transform: translateY(8px) rotate(135deg);
          transform: translateY(8px) rotate(135deg);
}

.nav-container .ham-btn.active::after {
  -webkit-transform: translateY(-8px) rotate(-135deg);
          transform: translateY(-8px) rotate(-135deg);
}

.nav-container .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin-bottom: 0;
  margin: 0;
}

.nav-container .nav-links li {
  list-style-type: none;
  position: relative;
  padding: 18px 20px;
}

.nav-container .nav-links .btn {
  background-color: #B38A5F;
  border-radius: 2rem;
  padding: 5px 20px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 700;
}

.nav-container .nav-links .btn:hover {
  background: #333;
}

.nav-container .nav-link {
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  margin-bottom: 0;
  font-weight: 700;
  display: block;
  font-size: 1rem;
  padding: 0;
  padding-bottom: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.nav-container .nav-link:hover {
  color: #B38A5F;
}

.nav-container .nav-link:hover::after {
  width: 100%;
}

.nav-container .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  background-color: #B38A5F;
  height: 2.5px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-container .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #fff;
  z-index: 100;
  padding: 0;
  padding: 0;
  margin: 0;
  -webkit-box-shadow: 0 0 2px 0px rgba(184, 184, 184, 0.637);
          box-shadow: 0 0 2px 0px rgba(184, 184, 184, 0.637);
}

.nav-container .sub-menu li {
  margin: 0;
  padding: 0;
}

.nav-container .sub-menu .nav-link {
  margin: 0;
  color: #333;
  padding: 8px 20px;
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-container .sub-menu .nav-link::after {
  content: none;
}

.nav-container .sub-menu .nav-link:hover {
  background-color: #B38A5F;
  color: #fff;
}

.nav-container .nav-links li:hover .sub-menu {
  display: block;
}

@media only screen and (max-width: 991px) {
  .nav-container {
    padding: 0 1rem;
  }
  .nav-container .ham-menu {
    display: -ms-grid;
    display: grid;
  }
  .nav-container .logo {
    font-size: 1.5rem;
    padding: 0.5rem 0;
  }
  .nav-container .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    height: 100vh;
    width: 80vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #141414;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 2rem;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .nav-container .nav-links li {
    padding-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .nav-container .nav-links .btn {
    margin: 0 !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .nav-container .nav-links .nav-link::after {
    content: none;
  }
  .nav-container .nav-links.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  .nav-container .nav-links .sub-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }
  .nav-container .nav-links .sub-menu li {
    padding: 0;
  }
  .nav-container .nav-links .sub-menu.active {
    display: block;
    max-height: 100%;
    opacity: 1;
    visibility: visible;
  }
  .nav-container .nav-links li:hover .sub-menu {
    position: unset;
  }
}

.hero {
  background: url("../img/home-banner.jpeg");
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
}

.hero .content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-top: 5rem;
  padding-left: 5rem;
}

.hero .content .logo {
  text-transform: uppercase;
  font-family: 'Stylish', sans-serif;
  font-family: 'Montserrat', sans-serif;
  font-size: calc(3vw + 1rem);
  font-weight: 700;
  color: #dfb475;
  font-weight: 300;
}

.hero .content .slide-content {
  color: #fff;
  font-weight: 600;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(#000000b4));
  background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, #000000b4 100%);
  z-index: -1;
  isolation: isolate;
}

.excep-exp {
  max-width: 1100px;
  text-align: center;
}

.excep-exp p {
  margin: 1rem auto;
}

.category {
  background-color: #999;
  width: 100%;
  overflow: hidden;
}

.category .col-6:nth-child(2) {
  background-color: #B38A5F;
}

.category .col-6:nth-child(2) .row {
  height: 50%;
}

.category .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../img/home-banner.jpeg") no-repeat center center;
  background-size: cover;
  cursor: pointer;
  -webkit-transition: .8s all ease;
  transition: .8s all ease;
  position: relative;
  z-index: 1;
}

.category .cat::after {
  -webkit-transition: .8s all ease;
  transition: .8s all ease;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  isolation: isolate;
  background: rgba(139, 139, 139, 0.4);
  opacity: 0;
}

.category .cat:hover::after {
  opacity: 1;
}

.category .cat:hover span {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.category .cat span {
  text-decoration: none;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 700;
  -webkit-transition: .8s all ease;
  transition: .8s all ease;
}

.category .cat1 {
  height: 650px;
  background: url("../img/Message.jpeg") no-repeat center center;
  background-size: cover;
}

.category .cat2 {
  background: url("../img/mimg2.jpg") no-repeat center center;
  background-size: cover;
}

.category .cat3 {
  background: url("../img/mimg3.jpg") no-repeat center center;
  background-size: cover;
}

.category .cat4 {
  background: url("../img/Men's-treatment.jpeg") no-repeat center center;
  background-size: cover;
}

.wogs {
  max-width: 1000px;
}

.wogs .splide__slide {
  padding: 3rem;
  text-align: center;
}

.wogs .splide__slide p {
  text-align: center;
}

.splide__pagination__page.is-active {
  background-color: #555;
}

.relax-section .row {
  margin: 3rem 0;
}

.relax-section h3 {
  font-size: 3rem !important;
}

.relax-section h5 {
  font-weight: normal;
  font-size: 1.5rem;
}

.relax-section p {
  font-size: 0.9rem;
}

.relax-section img {
  max-width: 100%;
}

.card-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card-section .card {
  margin: 0 1rem;
  border: none;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 21rem;
}

.card-section .card .card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card-section .map {
  width: 100%;
}

.card-section .map iframe {
  width: 100%;
  aspect-ratio: 3/2;
}

.footer-04 {
  background: #272727;
  padding-bottom: 0;
  padding: 3rem 3rem 1rem 3rem;
}

.footer-04 .logo {
  font-size: 2rem !important;
}

.footer-04 .footer-heading {
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-04 .footer-heading a {
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
}

.footer-04 p {
  color: rgba(255, 255, 255, 0.3);
}

.footer-04 .list-unstyled li a {
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 1rem 0;
}

.footer-04 .subscribe-form .form-group {
  position: relative;
  margin-bottom: 0;
  border-radius: 0;
}

.footer-04 .subscribe-form .form-group input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: none !important;
  outline: none !important;
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 16px;
  border-radius: 0;
}

.footer-04 .subscribe-form .form-group .submit {
  color: #fff !important;
  display: block;
  width: 52px;
  height: 52px;
  font-size: 16px;
  background: #B38A5F !important;
  border: none;
  border-radius: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.footer-04 .subscribe-form .form-group .submit .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-04 .ftco-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block;
}

.footer-04 .ftco-footer-social li i {
  color: #fff;
  font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .footer-04 {
    padding: 1rem 10px;
  }
  .footer-04 .col-6 {
    width: 100%;
    text-align: center !important;
  }
  .footer-04 .col-4 {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .hero {
    padding: 5rem 0;
    height: auto;
    width: 100%;
  }
  .hero .content {
    position: relative;
    padding: 0;
    top: 30px;
    -webkit-transform: none;
            transform: none;
    text-align: center;
  }
  .hero .logo {
    font-size: 2.15rem !important;
  }
  .card-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-section .card {
    width: 100%;
    margin-bottom: 2rem;
  }
  .excep-exp {
    text-align: center;
    padding: 0 1rem;
  }
  .category {
    background-color: #999;
    width: 100%;
    overflow: hidden;
  }
  .category .col-6 {
    width: 100%;
  }
  .category .col-6:nth-child(2) {
    background-color: #B38A5F;
  }
  .category .col-6:nth-child(2) .row,
  .category .col-6:nth-child(2) .col-6 {
    min-height: 220px;
    height: auto;
  }
  .category .cat1 {
    height: 400px;
  }
  .relax-section h3 {
    font-size: 2rem !important;
  }
  .relax-section h5 {
    font-size: 1.25rem !important;
  }
  .relax-section .row {
    margin: 3rem 0;
  }
  .relax-section .row .col-6 {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */

/* for desktop */
.whatsapp_float {
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
        font-size:30px;
	box-shadow: 2px 2px 3px #999;
        z-index:100;
}

.whatsapp-icon {
	margin-top:16px;
}
/* for mobile */
@media screen and (max-width: 767px){
     .whatsapp-icon {
	 margin-top:10px;
     }
    .whatsapp_float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        left: 10px;
        font-size: 40px;
    }
}


/* for desktop */
.phone {
	position:fixed;
	width:60px;
	height:60px;
	bottom:110px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
        font-size:30px;
	box-shadow: 2px 2px 3px #999;
        z-index:100;
}

.phone-icon {
	margin-top:16px;
}
/* for mobile */
@media screen and (max-width: 767px){
     .phone-icon {
	 margin-top:10px;
     }
    .phone {
        width: 60px;
        height: 60px;
        bottom: 90px;
        left: 10px;
        font-size: 40px;
    }
}

/* for desktop */
.phone {
	position:fixed;
	width:60px;
	height:60px;
	bottom:110px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
        font-size:30px;
	box-shadow: 2px 2px 3px #999;
        z-index:100;
}

.phone-icon {
	margin-top:16px;
}
/* for mobile */
@media screen and (max-width: 767px){
     .phone-icon {
	 margin-top:10px;
     }
    .phone {
        width: 60px;
        height: 60px;
        bottom: 90px;
        left: 10px;
        font-size: 40px;
    }
}


